home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 59 / Cine Live 59.iso / pc / Data / Interface / loading.k < prev    next >
Encoding:
Text File  |  2002-06-13  |  1.5 KB  |  63 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$000001FC,$0000005C,$0000017F,$00000337,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$0000009B,$0000002B,$0000032F,$00000267,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; Cursor is oEmptyCursor; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oLOADING2,
  16.         oCache3
  17.     ];
  18. end;
  19.  
  20. object oLOADING2 is cImage
  21. with 
  22.     Flags is $00000154; 
  23.     Name is "LOADING"; 
  24.     
  25.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  26.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  27.     
  28.     URL is "../Images/LOADING.JPG"; 
  29.     
  30.     
  31. end;
  32.  
  33. object oCache3 is cCacheLoader
  34. with 
  35.     Flags is $00000054; 
  36.     Name is "Cache"; 
  37.     Shown is false; 
  38.     X is 148; Y is 319; 
  39.     Width is 500; Height is 10; 
  40.     
  41.     
  42.     Events is [
  43.         cOnscreenEvent
  44.         with Flags is $00000004; 
  45.             Commands is [
  46.                 cCreateCacheCommand
  47.                 with URL is "Data/Anims/SMS2.mov"; URLOption is GetDiskURL; Now is true; end,
  48.                 cCreateCacheCommand
  49.                 with URL is "data/Anims/transporter2.mov"; URLOption is GetDiskURL; Now is true; end,
  50.                 cCreateCacheCommand
  51.                 with URL is "data/Anims/Transporter.mov"; URLOption is GetDiskURL; Now is true; end,
  52.                 cCreateCacheCommand
  53.                 with URL is "data/Anims/Jeidi.mov"; URLOption is GetDiskURL; Now is true; end,
  54.                 cCreateCacheCommand
  55.                 with URL is "data/Anims/Abocine.mov"; URLOption is GetDiskURL; Now is true; end,
  56.                 cUpdateCacheCommand
  57.                 with end,
  58.                 cBrowseCommand
  59.                 with URL is "sommaire.k"; end
  60.             ];
  61.         end
  62.     ];
  63. end;